*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}
@media (max-width: 768px) {
    br {
        display: none;
    }
}




/* ===== HERO ===== */
.hero{
    background:url("/images/Rectangle\ 27.png") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}

.hero-content{
    position: relative;
    color: #101010;
    align-items: center;
    text-align: center;
   
}

.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 60px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}

/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.3; /* Slightly adjust line height for mobile */
        margin-top:40px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 28px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}
/* Icon Navigation Bar */
.icon-nav {
  background: #fff;
  padding: 14px 0;                 /* thoda tight */
  text-align: center;
  border-bottom: 1px solid #2f3b52; /* thin dark line (image jaisa) */
}


.icon-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 200px;
  flex-wrap: wrap;
}

.icon-nav li {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.icon-nav li a {
  display: flex;              /* KEY FIX */
  flex-direction: column;     /* icon upar, text niche */
  align-items: center;        /* CENTER horizontally */
  text-align: center;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.icon-nav li span {
  display: block;
  text-align: center;
  font-size:25px;
}


.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #394458; /* Gray background for circle */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.icon-circle img {
  width: 30px; /* Size of the image inside the circle */
  height: 30px;
}

.icon-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 900;
  display: block;
  text-align: center;
}



/* Responsive Design */
@media (max-width: 768px) {
  .icon-nav ul {
    gap: 15px;
  }

  .icon-nav .icon-circle {
    width: 40px;
    height: 40px;
  }

  .icon-nav img {
    width: 20px; /* Smaller image on mobile */
    height: 20px;
  }

  .icon-nav li {
    font-size: 14px;
  }
}


/* ================= PRODUCT LISTING LAYOUT ================= */

.product-listing {
  width: 100%;
  background: #ffffff;
  padding: 40px 0;
}

.product-listing {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: auto;
  padding: 50px 0px;
}

/* ================= SIDEBAR ================= */
.sidebar {
  width: 300px;
  /* height: 90vh; */
  background: #fff;
  padding: 20px;

  border-radius: 10px;
  border: 0.1px solid rgba(0, 0, 0, 0.226);

  /* ONLY right + bottom shadow */
  box-shadow:
    8px 0 16px rgba(0, 0, 0, 0.14),   /* right */
    0 8px 16px rgba(0, 0, 0, 0.14);   /* bottom */
}





.filter-btn {
  width: 100%;
  background:none;
  border: none;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  border-radius: 4px;
  /* margin-bottom: 15px; */
  cursor: pointer;
}

.search-box {
  position: relative;
  margin-bottom: 20px;
}

.search-box input {
  width: 100%;
  height: 44px;
  background: #bcbcbc;
  border: none;
  border-radius: 999px;        /* 🔥 makes pill shape */
  padding: 0 16px 0 46px;      /* space for icon */
  font-size: 15px;
  color: #000;
  outline: none;
}
.search-box input::placeholder {
  color: #555;
  font-weight: 500;
}
.search-icon {
   position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* prevents click issues */
}

.filter-section {
  margin-bottom: 25px;
}

.filter-section h3 {
 font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.checkbox-item input {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid #000;
  border-radius: 2px;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}
.checkbox-item input:checked {
  background-color: #0a9cff;
  border-color: #0a9cff;
}
.checkbox-item input:checked::before {
  content: "✓";
  font-size: 12px;
  color: #fff;
  line-height: 1;
}
.filter-section {
  margin-bottom: 22px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 8px;
}


/* ================= MOBILE FILTER ================= */

/* SHOW filter icon on mobile */
.mobile-filter-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.mobile-filter-bar button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Overlay */
.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  display: none;
}

/* Drawer */
.filter-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: 0.35s ease;
  overflow-y: auto;
}

.filter-drawer.active {
  left: 0;
}

.filter-overlay.active {
  display: block;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.filter-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE TOP TOOLBAR */
.mobile-toolbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

/* Buttons */
.tool-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* Grid / List Toggle */
.view-toggle {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.view-toggle button {
  padding: 6px 10px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.view-toggle button.active {
  background: #000;
  color: #fff;
}

.product-grid.list-view {
  grid-template-columns: 1fr !important;
}

.product-grid.list-view .product-card {
  max-width: 100%;
}

.product-grid.list-view .product-image-container {
  height: 300px;
}


/* MOBILE ONLY */
@media (max-width: 768px) {
  .mobile-toolbar {
    display: flex;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}


@media (max-width: 768px) {

  /* SHOW filter icon on mobile */
  .mobile-filter-bar {
    display: flex;
    margin-bottom: 10px;
  }

  /* Stack layout */
  .product-listing {
    flex-direction: column;
  }

  /* Hide desktop sidebar */
  .product-listing > .sidebar {
    display: none;
  }

  /* Center products */
  .main-content {
    width: 100%;
  }

  .product-grid {
    justify-content: center;
  }

  .product-card {
    margin: auto;
    max-width: 360px;
  }
}

.price-slider {
  width: 100%;
  height: 6px;
  appearance: none;
  background: #ddd;
  border-radius: 5px;
  outline: none;
}

.price-slider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #1f7a8c;
  border-radius: 50%;
  cursor: pointer;
}

.price-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #1f7a8c;
  border-radius: 50%;
  cursor: pointer;
}

/* ================= MAIN CONTENT ================= */

.main-content {
  flex: 1;
}

/* ================= PRODUCT GRID ================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ================= PRODUCT CARD ================= */

.product-card {
  border-radius: 24px;
  padding-bottom: 16px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* ================= IMAGE ================= */

.product-image-container {
  position: relative;
  height: 230px;
  margin: 12px;
  overflow: hidden;
  border-radius: 2px 2px 20px 20px;
  background: #fff;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Soft fade at bottom */
.product-image-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.12) 100%
  );
  pointer-events: none;
}

/* ================= INFO ================= */

.product-info {
  margin-top: -30px;
  text-align: center;
  padding: 10px 18px;
}

/* White curved strip */
.product-title {
  background: #fff;
  width: calc(100% - 40px);
  margin: -40px auto 0;
  padding: 18px 10px;
  /* border-radius: 50px 50px 0px 0px; */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #111;    
  text-align: center;
  z-index: 2;
  position: relative;
}

.product-subtitle {
  position: relative;
  font-size: 14px;
  color: #353535;
  /* margin-top: -10px; */
  line-height: 1.6;
  z-index: 3;
}

/* ================= PAGINATION ================= */

.pagination {
  display: flex;
  justify-content: right;
  gap: 10px;
  margin-top: 40px;
}

.page-btn {
  padding: 8px 14px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  border-radius: 6px;
}

.page-btn.active {
  background: #000;
  color: #fff;
}

.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-listing .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   IMAGE BOTTOM LEFT & RIGHT CURVE (PHIFER STYLE)
   ========================================= */

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  /* Top rounded */
  border-radius: 30px 30px 0 0;

  
  /* clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    92% 100%,
    8% 100%,
    0 85%
  ); */

  display: block;
}


/* GLOBAL FIX */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* SECTION */
.category-slider {
  position: relative;
  max-width: 1200px;
  margin: 60px auto;
  overflow: hidden;
}

/* VIEWPORT – ONLY 4 CARDS */
.slider-viewport {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 30px; /* 👈 important */
  transition: transform 0.4s ease;
}

.slide-card {
  flex: 0 0 calc(50% - 15px); /* desktop = 2 cards */
  box-sizing: border-box;
}

@media (max-width: 992px) {
  .slide-card {
    flex: 0 0 100%;
  }
}


/* CIRCLE IMAGE */
.circle-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.slide-item p {
  margin-top: 14px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
}

/* ARROWS */
.nav-btn {
  position: absolute;
  top: 80px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #333;
  background: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .slider-viewport {
    width: calc((160px * 2) + 25px);
  }

  .slide-item {
    min-width: 160px;
  }

  .circle-img {
    width: 120px;
    height: 120px;
  }

  .nav-btn {
    top: 60px;
  }
}

  /* SECTION */
    .made-usa-section {
      padding: 0; /* Removed padding for full width */
      background: #fff;
      margin-bottom: 50px;
    }

    /* CONTAINER */
    .made-usa-container {
      max-width: 100%; /* Full width */
      margin: 0; /* Removed margin */
      display: flex;
      align-items: stretch;   /* 🔥 SAME HEIGHT */
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
      border-radius: 6px;
      overflow: hidden;       /* 🔥 CLEAN EDGES */
    }

    /* LEFT IMAGE */
    .made-usa-image {
      width: 65%;  /* Increased the width of the image */
    }

    .made-usa-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* RIGHT CONTENT */
    .made-usa-content {
      width: 35%;  /* Reduced the width of the right content */
      background: #1e5aa8;
      color: #fff;
      padding: 28px 30px;  /* Reduced padding to bring the content closer */
      display: flex;
      flex-direction: column;
      justify-content: center; /* 🔥 VERTICAL CENTER */
    }

    /* TEXT */
    .made-usa-content h3 {
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .made-usa-content p {
      font-size: 16.5px;
      line-height: 1.7;
      opacity: 0.95;
    }

    /* RESPONSIVE */
    @media (max-width: 992px) {
      .made-usa-container {
        flex-direction: column;
      }

      .made-usa-image,
      .made-usa-content {
        width: 100%;
      }

      .made-usa-image img {
        height: 220px;
      }
    }



/* SECTION */
.diy-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
}

/* CONTAINER */
.diy-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE WRAPPER */
.diy-image-wrapper {
  position: relative;
}

/* MAIN IMAGE */
.diy-main-img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  display: block;
}

/* CIRCULAR OVERLAY IMAGE */
/* .diy-image-wrapper::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: url("/images/screening-circle.png") center/cover no-repeat;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
} */

/* CONTENT */
.diy-content h1 {
  /* font-size: 32px; */
  font-weight: 600;
  margin-bottom: 20px;
  font-family:'Merriweather', serif;
}

.diy-content p {
  font-size: 18px;
  line-height: 1.7;
  color:black;
  margin-bottom: 16px;
}

/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .diy-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .diy-image-wrapper::after {
    right: 20px;
    bottom: -20px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .diy-content h2 {
    font-size: 26px;
  }

  .diy-image-wrapper::after {
    width: 120px;
    height: 120px;
  }
}
/* MENU BAR */
.icon-menu {
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}
/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .product-intro,
    .usa{
        flex-direction:column;
    }

    .product-img,
    .product-text,
    .usa img{
        width:100%;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .navbar{
        flex-direction:row;
        gap:10px;
    }
}
/* SECTION */
.diy-solutions {
  padding: 80px 20px;
  background: #fff;
  /* font-family: 'Open Sans', sans-serif; */
}

/* HEADER */
.diy-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.diy-header h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
}

.diy-header p {
  font-size: 17px;
  color: #555;
  line-height: 1.6;
   font-family: 'Open Sans', sans-serif;
}

/* SLIDER WRAPPER */
.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
}

/* VIEWPORT */
.slider-viewport {
  overflow: hidden;
  width: 100%;
}

/* TRACK */
.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* CARD */
.slide-card {
  flex: 0 0 50%;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

.slide-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

/* CARD CONTENT */
.slide-card h1 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.slide-card p {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* BUTTON */
.btn-primary {
  display: inline-block;
  padding: 8px 28px;
  background: #0a9bf5;
  color: #fff;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #007bd4;
}

/* ARROWS */
.slider-btn {
  background: #fff;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: 0.3s;
}

.slider-btn:hover {
  background: #000;
  color: #fff;
}

.slider-btn.left {
  margin-right: 10px;
}

.slider-btn.right {
  margin-left: 10px;
}
.screenn-feature h1{
  font-size:42px;
  color:black;
  font-weight:600;
}
.screenn-feature p{
  font-size:18px;
  color:black;
  text-align:center;
 }
/* ---------------- RESPONSIVE ---------------- */

/* TABLET & MOBILE */
@media (max-width: 992px) {
  .slide-card {
    flex: 0 0 100%;
    text-align:start;
  }

  .slide-card img {
    height: 220px;
  }
}

/* SMALL MOBILE */
@media (max-width: 576px) {
  .diy-header h1 {
    font-size: 26px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
}
.accordian1{
  padding-top:50px;
   width:80%;
}
.accordion-button {
  background-color: transparent; 
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  padding: 20px 32px;
  border-radius:24px;
  box-shadow: none;
 
  
}
.accordion-button:focus {
    background-color:  #0099FF; /* Keep the same color when expanded */
    color:white;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ffffff;
}
/* 🔥 REMOVE BOOTSTRAP DEFAULT ICON COMPLETELY */
.accordion-button::after {
  background-image: none !important;
  filter: none !important;
}
.accordion{
    font-family: 'Fredoka One', sans-serif ; /* Correct property to set the font family */
   
}

.accordion-button:focus {
  box-shadow: none; /* Remove default focus shadow */
}


.accordion-button::before {
  display: none;
}

.accordion-body {
  background-color: transparent; /* ❌ remove second blue box */
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  padding: 0 32px 28px 32px;
  border-radius:24px;
  box-shadow: none;
}
#contactFormSection{
  scroll-margin-top: 150px !important; 
}
.accordion-item {
  background-color: #0099FF;
  border-radius:32px;
  overflow: hidden; 
  margin-bottom: 18px !important;
  border: none;
  color: white;

  align-items:center;
  width:80%;
  margin: 0 auto;

  
}

.accordion-header {
  padding: 0;
  margin: 0;
}

/* .accordion-button:after {
  content: '\f078'; 
  font-family: 'FontAwesome';
  background-color: #0099FF;
  font-weight: bold;
  font-size:25px;
  color:white;
  float: right;
  transition: transform 0.3s ease;
} */
 .accordion-button::after {
  content: "›";
  background: #ffffff;
  color: #0099FF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  filter: none !important; /* 🔥 stops black hover */
}
/* 🔥 REMOVE ALL FOCUS / ACTIVE BORDERS */
.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:hover::after,
.accordion-button:focus::after {
  background: #ffffff;
  color: #0099FF;
  filter: none !important; /* 🔥 force white */
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.accordion-button {
  border-radius: 0 !important;   /* 🔑 prevents mismatch */
}

.accordion-body {
  border-radius: 0 !important;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 32px;
}

/* Responsive styling */
@media (max-width: 767px) {
   .accordion-button {
    font-size: 18px;
    padding: 20px;
  }

  .accordion-body {
    font-size: 16px;
    padding: 0 20px 20px;
  }
.faq-new{
  padding-top:0 !important;
}
}
.accordion-button strong {
  margin-right: 20px; /* Add margin to the right to space out the text */
}

.FAQ{
  font-size:90px;
  font-weight:600;
  padding-bottom:0;
}
.faq2{
  padding-bottom:30px;
}
/* ===== FOOTER START ===== */
.site-footer {
  background: #3c4a5e;
  color: #fff;
  padding-top:40px;
  padding-right:20px;
  padding-left:20px;
  padding-bottom:20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   /* 🔑 MAIN FIX */
  gap: 150px;
}

/* LEFT SIDE */
.footer-left {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* margin-left: 40px; */
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 18px;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 18px;
}

.footer-divider {
  width: 260px;      /* 👈 screenshot jaisa */
  height: 2px;
  background: #fff;
  margin-bottom: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #3c4a5e;
}

/* RIGHT SIDE */
.footer-right {
  flex: 1;
  display: flex;
  gap: 90px;
  align-items: flex-start;   /* 🔑 VISIT & LINKS same line */
  margin-top: 70px;
}

.footer-col h4 {
  font-size: 20px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-col ul li a:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    gap: 40px;
  }

  .footer-divider {
    width: 180px;
  }
}
/* SECTION */
.screen-features {
  padding: 80px 20px;
  background: #fff;
}

/* WRAPPER */
.features-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

/* CENTER IMAGE */
.features-wrapper > img {
  width: 85%;
  display: block;
  margin-left: 70px;
}

/* COMMON TEXT STYLE */
.feature-text {
  position: absolute;
  max-width: 260px;
  font-family: 'Open Sans', sans-serif;
}

.feature-text h3 {
  font-family:'Merriweather', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
  text-decoration:underline;
}

.feature-text p {
  font-size: 12px;
  line-height: 1.5;
  color: #444;
}

/* ---- INDIVIDUAL POSITIONS ---- */
/* Top Left */
.feature-text.visibility {
  top:5%;
  left:-6%;
  bottom:-4%;
}

/* Parent container */
.feature-card {
  position: relative;
}

/* Text overlay */
.feature-text {
  position: absolute;
  max-width: 370px;
}

/* Top Right Fix */
.feature-text.durability {
  top: -10px;     /* thoda gap dena better hai */
  right: -50px;
  text-align: left;
}



/* Privacy (Right Middle) */
.feature-text.privacy {
  top: 56%;
  right: -85px;               /* 🔥 FIX: negative hatao */
  transform: translateY(-50%); /* 🔥 vertical center */
  max-width: 300px;
  text-align: left;
}

/* Bottom Left Fix */
.feature-text.pet {
  bottom: 40px;     /* 🔥 thoda spacing niche se */
  left: -10px;       /* 🔥 edge se gap */
  max-width: 300px;
  text-align: left;
}

/* Bottom Center / Slight Right */
/* Insects (Bottom Right) */
.feature-text.insects {
  bottom: -28px;              /* 🔥 andar rakho */
  right: 50px;               /* 🔥 proper right alignment */
  left: auto;                /* reset */
  transform: none;           /* reset */
  text-align: left;
}
/* Pet Protection (Bottom Center) */
.feature-text.Protection {
  bottom: -115px;              /* 🔥 image ke andar niche */
  left: 42%;               
  transform: translateX(-50%);
  /* max-width: 260px; */
  text-align: left;
}
/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .feature-text {
    position: static;
    max-width: 100%;
    margin: 20px 0;
  }
 .insects{
  display:none;
 }
  .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .feature-text h3 {
    font-size: 18px;
  }

  .feature-text p {
    font-size: 18px;
  }

}
/* SECTION BASE */
.airflow-section {
  position: relative;
  width: 100%;
  margin-top:150px;
  height:620px;
  background: url("/images/airflow2img.png") center / cover no-repeat;
  display: flex;
  align-items: stretch;
  border-top:8px solid black;
  border-bottom:8px solid black;
}

/* DARK OVERLAY */
.airflow-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    to right,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.15)
  ); */
}

/* CONTENT BOX */
.airflow-content {
  position: absolute;
  right: 0px;
  top:350px;
  /* bottom:20px; */
  padding-top:10px;
  background: #fff;
  padding-left:30px;
  padding-right:30px;
 
  max-width: 548px;

  /* border-radius: 18px; */


  /* box-shadow: 0 12px 30px rgba(0,0,0,0.25); */

  font-family: 'Open Sans', sans-serif;
}

/* HEADING */
.airflow-content h1 {
  font-family:'Merriweather', serif;
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

/* TEXT */
.airflow-content p {
  font-size:20px;
  line-height: 1.6;
  color: #333;
}

/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .airflow-content {
    right: 30px;
    bottom: 30px;
    max-width: 380px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .airflow-section {
    min-height: 360px;
     background: url("/images/airflow1img.png") center / cover no-repeat;
     display:flex;
     flex-direction:column;
     overflow:visible;
  }

  .airflow-content {
    position: relative;
    
    right: auto;
    bottom: auto;
    margin: auto ;
    max-width: 100%;
   
  }
}
/* ===============================
   WHY PHIFER SECTION
================================ */

.why-phifer {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  font-family: "Inter", sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

/* ===============================
   LEFT CONTENT
================================ */

.why-left h1 {
  font-size: 50px;
  line-height: 1.15;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
  font-family:'Merriweather', serif;
}

.why-left p {
  font-size:20px;
  line-height: 1.6;
  color: black;
  max-width: 420px;
  margin-bottom: 30px;
}

.why-btn {
  display: inline-block;
  padding: 14px 28px;
  border: 1.5px solid #111;
  border-radius: 20px;
  color: #111;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.why-btn:hover {
  background: #111;
  color: #fff;
}

/* ===============================
   RIGHT FEATURE GRID
================================ */

.why-right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* FEATURE CARD */
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px;
  text-align: center;
  /* box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.28); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.13);
}

.feature-card:hover {
  transform: translateY(-6px) scale(1.05); /* Makes the card scale up slightly */
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3); /* Adjusted box shadow to be more centered and lighter */
}

/* ICON */
.feature-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card .icon img {
  width: 100%;
  height: auto;
}

/* TEXT */
.feature-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
  font-family:'Merriweather', serif;
  text-decoration:underline;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.5;
  color:black;
}

/* ===============================
   TABLET RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-left h2 {
    font-size: 38px;
  }

  .why-right {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================ */

@media (max-width: 600px) {
  .why-phifer {
    padding: 60px 16px;
  }
.screening-cta h1 {
  font-size: 35px !important;
  font-weight: 500;
  margin-bottom: 14px;
  font-family:'Merriweather', serif; 
}
  .why-left h2 {
    font-size: 32px;
  }

  .why-left p {
    font-size: 15px;
  }

  .why-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px 18px;
  }
}
.screening-cta {
  background: #0a9bf5; /* Phifer blue */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

/* CONTAINER */
.cta-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.screening-cta h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 14px;
  font-family:'Merriweather', serif; 
}

/* SUBTEXT */
.screening-cta p {
  font-size:20px;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.95;
}

/* OPTIONS WRAPPER */
.cta-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* OUTER WHITE RING */
.border-cir {
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER CIRCLE */
.cta-circle {
  width: 135px;
  height: 135px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    inset 0 4px 8px rgba(0,0,0,0.15),
    0 10px 14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

}

/* ICON */
.cta-circle img {
  width: 38px;
  height: auto;
}

/* LABEL */
.cta-circle span {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
  font-family:'Merriweather', serif; 
}

/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .screening-cta h2 {
    font-size: 30px;
  }

  .border-cir {
    width: 120px;
    height: 120px;
  }

  .cta-circle {
    width: 95px;
    height: 95px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .screening-cta {
    padding: 60px 15px;
  }

  .screening-cta h2 {
    font-size: 24px;
  }

  .cta-options {
    gap: 25px;
  }
  .cta-circle span {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  font-family:'Merriweather', serif; 
}
}
.accordian1{
  padding-top:50px;
}
.accordion-button {
  background-color: transparent; 
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  /* padding: 28px 32px; */
  border-radius:24px;
  box-shadow: none;
}
.accordion-button:focus {
    background-color:  #0099FF; /* Keep the same color when expanded */
    color:white;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ffffff;
}
/* 🔥 REMOVE BOOTSTRAP DEFAULT ICON COMPLETELY */
.accordion-button::after {
  background-image: none !important;
  filter: none !important;
}
.accordion{
    font-family: 'Fredoka One', sans-serif ; /* Correct property to set the font family */
}

.accordion-button:focus {
  box-shadow: none; /* Remove default focus shadow */
}


.accordion-button::before {
  display: none;
}

.accordion-body {
  background-color: transparent; 
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  /* padding: 0 32px 28px 32px; */
  border-radius:24px;
  box-shadow: none;
}

.accordion-item {
  background-color: #0099FF;
  border-radius:32px;
  overflow: hidden; /* IMPORTANT: joins header + body */
  margin-bottom: 18px;
  border: none;
  color: white;
}

.accordion-header {
  padding: 0;
  margin: 0;
}

/* .accordion-button:after {
  content: '\f078'; 
  font-family: 'FontAwesome';
  background-color: #0099FF;
  font-weight: bold;
  font-size:25px;
  color:white;
  float: right;
  transition: transform 0.3s ease;
} */
 .accordion-button::after {
  content: "›";
  background: #ffffff;
  color: #0099FF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  filter: none !important; /* 🔥 stops black hover */
}
/* 🔥 REMOVE ALL FOCUS / ACTIVE BORDERS */
.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:hover::after,
.accordion-button:focus::after {
  background: #ffffff;
  color: #0099FF;
  filter: none !important; /* 🔥 force white */
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.accordion-button {
  border-radius: 0 !important;   /* 🔑 prevents mismatch */
}

.accordion-body {
  border-radius: 0 !important;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 32px;
}

/* Responsive styling */
@media (max-width: 767px) {
   .accordion-button {
    font-size: 18px;
    padding: 20px;
  }

  .accordion-body {
    font-size: 16px;
    padding: 0 20px 20px;
  }
.faq-new{
  padding-top:0 !important;
}
}
.accordion-button strong {
  margin-right: 20px; /* Add margin to the right to space out the text */
}

.FAQ{
  font-size:30px;
  font-weight:600;
  padding-bottom:0;
}
.faq2{
  padding-bottom:30px;
}
